home *** CD-ROM | disk | FTP | other *** search
/ 17 Bit Software 5: The Fifth Dimension / 17 Bit - The Fifth Dimension (1995)(17 Bit Software)[!].iso / files / 3581.dms / 3581.adf / ControlPanel / ControlPanel.Installer < prev    next >
Text File  |  1995-01-15  |  2KB  |  132 lines

  1. ;Installer V1 For AmiTCP Control Panel V2
  2. ;
  3. ;©Martin Hunt 1994
  4. ;
  5. ;
  6.  
  7. (complete 0)
  8.  
  9. (set amitcpdir
  10.    (askdir
  11.        (prompt "Where is AmiTCP installed?")
  12.        (help @askdir-help)
  13.        (default "dh1:amitcp")
  14.    )
  15. )
  16.  
  17. (makeassign "amitcp" amitcpdir)
  18.  
  19. (textfile
  20.    (dest "envarc:amitcpdir")
  21.    (append amitcpdir)
  22. )
  23.  
  24. (textfile
  25.    (dest "env:amitcpdir")
  26.    (append amitcpdir)
  27. )
  28.  
  29. (complete 10)
  30.  
  31. (set @default-dest
  32.    (askdir
  33.        (prompt "Where do you want to install AmiTCP Control Panel?")
  34.        (help @askdir-help)
  35.        (default "sys:wbstartup")
  36.    )
  37. )
  38.  
  39. (textfile
  40.    (dest "envarc:controlpaneldir")
  41.    (append @default-dest)
  42. )
  43.  
  44. (textfile
  45.    (dest "env:controlpaneldir")
  46.    (append @default-dest)
  47. )
  48.  
  49. (copyfiles
  50.    (prompt "Copying AmiTCP Control Panel to " @default-dest )
  51.    (help @copyfiles-help)
  52.    (source "cp_mainprog")
  53.    (dest @default-dest)
  54.    (all)
  55.    (infos)
  56.    (confirm)
  57. )
  58.  
  59.  
  60. (complete 45)
  61.  
  62. (set @doc-dest
  63.    (askdir
  64.        (prompt "Where do you want to install AmiTCP Control Panel's Documents?")
  65.        (help @askdir-help)
  66.        (default "amitcp:docs")
  67.    )
  68. )
  69.  
  70.  
  71. (copyfiles
  72.    (prompt "Copying AmiTCP Control Panel Docs to " @doc-dest )
  73.    (help @copyfiles-help)
  74.    (source "docs")
  75.    (all)
  76.    (dest @doc-dest)
  77.    (infos)
  78.    (confirm)
  79. )
  80.  
  81. (complete 70)
  82.  
  83. (copyfiles
  84.    (prompt "Copying AmiTCP Control Panel Scripts and Commands to AmiTCP:bin" )
  85.    (help @copyfiles-help)
  86.    (source "bin")
  87.    (all)
  88.    (dest "Amitcp:bin")
  89.    (infos)
  90.    (confirm)
  91. )
  92.  
  93. (complete 85)
  94.  
  95. (copylib
  96.    (prompt "Copying AmiTCP Control Panel Libs to Libs:" )
  97.    (help @copyfiles-help)
  98.    (source "Libs/rexxarplib.library")
  99.    (dest "Libs:")
  100.    (infos)
  101.    (confirm)
  102. )
  103.  
  104. (copylib
  105.    (prompt "Copying AmiTCP Control Panel Libs to Libs:" )
  106.    (help @copyfiles-help)
  107.    (source "Libs/rexxreqtools.library")
  108.    (dest "Libs:")
  109.    (infos)
  110.    (confirm)
  111. )
  112.  
  113. (copylib
  114.    (prompt "Copying AmiTCP Control Panel Libs to Libs:" )
  115.    (help @copyfiles-help)
  116.    (source "Libs/rexxsupport.library")
  117.    (dest "Libs:")
  118.    (infos)
  119.    (confirm)
  120. )
  121.  
  122. (copylib
  123.    (prompt "Copying AmiTCP Control Panel Libs to Libs:" )
  124.    (help @copyfiles-help)
  125.    (source "Libs/rexxplslib.library")
  126.    (dest "Libs:")
  127.    (infos)
  128.    (confirm)
  129. )
  130.  
  131. (complete 100)
  132.